home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / shells / tcshsrc.zoo / tcsh / config / config.sxa < prev    next >
Encoding:
Text File  |  1991-08-06  |  3.1 KB  |  123 lines

  1. /*
  2.  * config.h for 
  3.  *      PFU/Fujitsu A-xx computer
  4.  * running
  5.  *      SX/A Edition 60 or later, without BSD/X option.
  6.  * (for systems with BSD/X, use config.bsd and /usr/bsd/bin/cc)
  7.  */
  8. /*
  9.  * Use followings in Makefile.
  10.  * w/o BSD/X
  11.  *    CC=    /bin/cc
  12.  * with BSD/X
  13.  *    CC=    /usr/bsd/bin/cc
  14.  *
  15.  * define KANJI in config_f.h if you need it.
  16.  */
  17.  
  18.  
  19. /****************** System dependant compilation flags ****************/
  20. /*
  21.  * POSIX    This system supports IEEE Std 1003.1-1988 (POSIX).
  22.  */
  23. #undef POSIX
  24.  
  25. /*
  26.  * POSIXJOBS    This system supports the optional IEEE Std 1003.1-1988 (POSIX)
  27.  *        job control facilities.
  28.  */
  29. #undef POSIXJOBS
  30.  
  31. /*
  32.  * VFORK    This machine has a vfork().  
  33.  *        It used to be that for job control to work, this define
  34.  *        was mandatory. This is not the case any more.
  35.  *        If you think you still need it, but you don't have vfork, 
  36.  *        define this anyway and then do #define vfork fork.  
  37.  *        I do this anyway on a Sun because of yellow pages brain damage,
  38.  *        [should not be needed under 4.1]
  39.  *        and on the iris4d cause    SGI's fork is sufficiently "virtual" 
  40.  *        that vfork isn't necessary.  (Besides, SGI's vfork is weird).
  41.  *        Note that some machines eg. rs6000 have a vfork, but not
  42.  *        with the berkeley semantics, so we cannot use it there either.
  43.  */
  44. #undef VFORK
  45.  
  46. /*
  47.  * BSDJOBS    You have BSD-style job control (both process groups and
  48.  *        a tty that deals correctly
  49.  */
  50. #undef BSDJOBS
  51.  
  52. /*
  53.  * BSDSIGS    You have 4.2-style signals, rather than USG style.
  54.  *        Note: POSIX systems should not define this unless they
  55.  *        have sigvec() and friends (ie: 4.3BSD-RENO, HP-UX).
  56.  */
  57. #undef BSDSIGS
  58.  
  59. /*
  60.  * BSDTIMES    You have BSD-style process time stuff (like rusage)
  61.  *        This may or may not be true.  For example, Apple Unix
  62.  *        (OREO) has BSDJOBS and BSDSIGS but not BSDTIMES.
  63.  */
  64. #define BSDTIMES
  65.  
  66. /*
  67.  * BSDNICE    Your system uses setpriority() instead of nice, to
  68.  *        change a processes scheduling priority
  69.  */
  70. #undef BSDNICE
  71.  
  72. /*
  73.  * TERMIO    You have struct termio instead of struct sgttyb.
  74.  *         This is usually the case for SVID systems, where
  75.  *        BSD uses sgttyb. POSIX systems should define this
  76.  *        anyway, even though they use struct termios.
  77.  */
  78. #define TERMIO
  79.  
  80. /*
  81.  * SVID        Your machine is SVID complient (Sys V, HPUX, A/UX)
  82.  *        NOTE: don't do this if you are on a Pyramid -- tcsh is
  83.  *        built in a BSD universe.
  84.  *        Set SVID to 1, 2, or 3, depending the version of System V
  85.  *        you are running. Or set it to 0 if you are not SVID based
  86.  */
  87. #define SVID    3
  88.  
  89. /*
  90.  * YPBUGS    Work around Sun YP bugs that cause expansion of ~username
  91.  *        to send command output to /dev/null
  92.  */
  93. #undef YPBUGS
  94.  
  95. /*
  96.  * SIGVOID    Define this if your signal handlers return void.  On older
  97.  *        systems, signal returns int, but on newer ones, it returns void.
  98.  */
  99. #define SIGVOID 
  100.  
  101. /*
  102.  * HAVEDUP2    Define this if your system supports dup2().
  103.  */
  104. #undef HAVEDUP2
  105.  
  106. /*
  107.  * UTHOST    Does the utmp file have a host field?
  108.  */
  109. #undef UTHOST
  110.  
  111. /*
  112.  * DIRENT    Your system has <dirent.h> instead of <sys/dir.h>
  113.  */
  114. #define DIRENT
  115. /****************** local defines *********************/
  116. /****************** configurable hacks ****************/
  117. /* have been moved to config_f.h */
  118. #include "config_f.h"
  119. /*
  120.  * SX/A does not have NLS
  121.  */
  122. #undef NLS
  123.